home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevlp8k.c < prev    next >
C/C++ Source or Header  |  1996-09-25  |  14KB  |  413 lines

  1. /* Copyright (C) 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevlp8k.c */
  20.  
  21. /* EPSON LP-8000 ESC-sequence Laser Printer driver for Ghostscript.
  22.  
  23. This driver structure is most close to that of the Epson 'ESC/P 2' language
  24. printer driver "gdevescp.c" contributed by Richard Brown, but all the control
  25. sequences and data formats are totally different.
  26.  
  27. The main driver strategy is as follows. The driver scans lines, skips empty
  28. ones, removes leading and trailing zeros for other lines, compresses the
  29. non-zero rest of each line and finally outputs the data.
  30.  
  31. At the moment the driver supports only 300x300 DPI resolution.  If somebody
  32. needs 240x240, another valid value for LP-8000 printer, he or she can try to
  33. play with the corresponding values in initialization and termination
  34. strings. Or I shall spend some extra time for hacking, if enough people
  35. encourage me to do it. (The only available in our laboratory "Operation
  36. guide" in Japanese does not contain any information about it. And LP-8000
  37. driver for Japanese Windows does not support this mode either.)
  38.  
  39.  
  40. The output data format is the following. 
  41.  
  42. 1. Initialization string, pretty long and sophisticated, I don't know why it
  43. was necessary.  
  44.  
  45. 2. Data bits for each line. The most general format includes both starting X
  46. and Y values as well as data type (simple or compressed).
  47.  
  48. 3. Termination string.
  49.  
  50.  
  51.     DATA FORMATS
  52.  
  53. 1. A simple (non-compressed) data format. By evident reasons it is NOT
  54. SUPPORTED by the driver and is discussed here just as a starting point for
  55. the future explanations. "\035" here is an alias for 0x1d ESC-character :
  56.  
  57. "\035" "Starting X point in ASCII format" "X" 
  58. "\035" "Starting Y point in ASCII format" "Y"
  59. "\035" "Number of data BYTES for this printer line in ASCII format" ";" 
  60. "Number of POINTS to print in this line (equals to the 
  61. (Number of BYTES)*8)" ";" 
  62. "1;obi{I" "data BYTES for this line in BINARY format"
  63.  
  64. Both X and Y printer coordinates are 60 pixels shifted from the corresponding
  65. coordinates of the Ghostscript display, that is X = x - 60, Y = y - 60. For
  66. example, 1 inch left margin requires the value of 300 - 60 = 240 for
  67. starting X printer coordinate. Similar, 1.5 inch top margin requires Y
  68. values to start from 300*1.5 - 60 = 390.
  69.  
  70. The shortest possible abbreviation for the simple data format string is 
  71.  
  72. "\035" "Starting Y point in ASCII format" "Y" 
  73. "\035" "Number of data BYTES for this printer line in ASCII format" ";"
  74. "Number of POINTS to print in this line (equals to the 
  75. (Number of BYTES)*8)" ";" 
  76. "1;obi{I" "data BYTES for this line in BINARY format"
  77.  
  78. In this case the value of the starting X point is assumed to be equal to
  79. that for the previous line.
  80.  
  81. An example of the data output for 2 printer lines
  82.  
  83. "\035"315X"\035"240Y"\035"2;16;1;obi{I"0ff0""\035"241Y"\035"3;24;1;obi{I"0f000f"
  84.  
  85. Here "0ff0" is an alias for 0x0f 0xf0 binary data, etc. The first line of the
  86. above example starts from X=315, Y=240 and consists of 2 data bytes
  87. resulting in 4 blank (white) points followed by 8 black points followed by 4
  88. white points on the paper. The second line starts from X=315, Y=241 and
  89. contains 3 data bytes resulting in output of 4 white, 4 black, 12 white and
  90. finally 4 black points.
  91.  
  92. 2. Compressed data format (SUPPORTED BY THE DRIVER).
  93.  
  94. General description is as follows.
  95.  
  96. "\035" "Starting X point in ASCII format" "X" 
  97. "\035" "Starting Y point in ASCII format" "Y"
  98. "\035" "3bcI" 
  99. "\035" "Total number of compressed BYTES in ASCII format" ";" 
  100. "Number of POINTS to print in this line" ";"
  101. "1;obi{I" "compressed data BYTES for this line in BINARY format"
  102. "\035" "0bcI"
  103.  
  104. Additional ESC-sequences "\035" "3bcI" and "\035" "0bcI" mean start and end
  105. of the compressed data format, respectively.  As in the discussed above case
  106. of a non-compressed data format, the shortest abbreviation has the form of
  107.  
  108. "\035" "Starting Y point in ASCII format" "Y"
  109. "\035" "Total number of compressed BYTES in ASCII format" ";" 
  110. "Number of POINTS to print in this line" ";"
  111. "1;obi{I" "compressed data BYTES for this line in BINARY format"
  112.  
  113. COMPRESSED DATA BYTES FORMAT has the form of 
  114.  
  115. "d1 d2 d3 d4 d4 count_d4 d5 d6 d6 count_d6 ... d(n-1) d(n-1) count_d(n-1) dn"
  116.  
  117. Here dx (x = 1 ... n) means data in a BINARY format. Any 2 repeated bytes
  118. MUST follow by the count, otherwise the printer will interpret the next
  119. data byte as a counter. The count value  indicates how many bytes of the
  120. same value should be INSERTED after the repeated ones. So, the total number of
  121. repeated bytes is (count + 2), not count. If there are only 2 equal data
  122. bytes somewhere in the data stream, they MUST follow by zero.
  123.  
  124. Example of 2 compressed data strings.
  125.  
  126. "\035"105X"\035"320Y"\035"3bcI"\035"3;2048;1;obi{I"0000fe"
  127. "\035"105X"\035"321Y"\035"11;2048;1;obi{I"0000021fffffe5fc000011" 
  128.  
  129. The first one containing 3 bytes of compressed data will result in empty
  130. (zero) line of 2048 blank points started from X=105, Y=320. The second one
  131. containing 11 compressed data bytes will produce the picture of 4*8 + 3 = 35
  132. white points followed by 5 + 16 + 0xe5*8 + 6 = 1859 black points followed by
  133. 2 + 8*19 = 154 white points (total 2048 points) started from X=105, Y=321.
  134.  
  135. Strictly speaking, it was not necessary to adjust the number of points to
  136. the byte boundary. I did it for the sake of simplicity. One more argument in
  137. favor of this step is that the error of positioning does not exceed (7 /
  138. 300) inches or (7 / 118) cm, that is 0.6 mm, which is negligible, I guess.
  139.  
  140.  
  141. ADDITIONAL INFORMATION
  142.  
  143. It is also possible to use LP-8000 printer with 180x180 DPI resolution as an
  144. "ibmpro" device from gdevepsn.c The only thing which should be corrected, is
  145. the value 0x30 in static const char ibmpro_init_string[]. Decimal 36
  146. fixes the 1,5 times elongation along the vertical axis. It is also
  147. recommended to choose the appropriate values for all margins. In my case it
  148. was 0.2, 0.6, 0, 0.3 in the device descriptor instead of the 0.2, 0.95, 0,
  149. 1.0 
  150.  
  151. Nevertheless, typical Latex file looked so ugly after printing in this mode,
  152. that I preferred to spend several days for hacking the format of the Japanese
  153. Windows printer output for 300 DPI resolution and create my own driver.
  154.  
  155. Any suggestions, corrections, critical comments, etc. are welcome!
  156.  
  157. Oleg Fat'yanov  <faty1@rlem.titech.ac.jp> 
  158.  
  159. */
  160.  
  161.  
  162. #include "gdevprn.h"
  163.  
  164. #ifndef X_DPI
  165. #define X_DPI 300
  166. #endif
  167.      
  168. #ifndef Y_DPI
  169. #define Y_DPI 300
  170. #endif
  171.      
  172. #define L_MARGIN 0.25
  173. #define B_MARGIN 0.25
  174. #define R_MARGIN 0.25
  175. #define T_MARGIN 0.25
  176.  
  177. private dev_proc_print_page(lp8000_print_page);
  178.  
  179. gx_device_printer far_data gs_lp8000_device =
  180.   prn_device(prn_std_procs, "lp8000",
  181.     DEFAULT_WIDTH_10THS,
  182.     DEFAULT_HEIGHT_10THS,
  183.     X_DPI, Y_DPI,
  184.     L_MARGIN, B_MARGIN, R_MARGIN, T_MARGIN,
  185.     1, lp8000_print_page);
  186.                                           
  187.        
  188. private int
  189. lp8000_print_page(gx_device_printer *pdev, FILE *prn_stream)
  190. {
  191.  
  192.         int line_size = gdev_mem_bytes_per_scan_line((gx_device *)pdev);
  193.         int in_size = line_size;
  194.                               
  195.     byte *buf1 = (byte *)gs_malloc(in_size, 1, "lp8000_print_page(buf1)");
  196.         byte *buf2 = (byte *)gs_malloc(in_size, 1, "lp8000_print_page(buf2)");
  197.         byte *in = buf1;
  198.         byte *out = buf2;
  199.                         
  200.         int lnum, top, bottom, left, width;
  201.         int count, i, left1, left2, left0;
  202.  
  203. /* Check  memory allocations  */         
  204.         
  205.         if ( buf1 == 0 || buf2 == 0 )
  206.         {       if ( buf1 )
  207.             gs_free((char *)buf1, in_size, 1, "lp8000_print_page(buf1)");
  208.                 
  209.                 if ( buf2 )
  210.                 gs_free((char *)buf2, in_size, 1, "lp8000_print_page(buf2)");
  211.           
  212.           return_error(gs_error_VMerror);
  213.           }
  214.  
  215. /* Initialize the printer */
  216.        
  217.     fwrite("\033\001@EJL \n",1,8,prn_stream);
  218.     fwrite("@EJL EN LA=ESC/PAGE\n",1,20,prn_stream);
  219.     fwrite("\035rhE\033\001@EJL \n",1,12,prn_stream);
  220.     fwrite("@EJL SE LA=ESC/PAGE\n",1,20,prn_stream);
  221.     fwrite("@EJL SET PU=1 PS=A4 ZO=OFF\n",1,27,prn_stream);
  222.     fwrite("@EJL EN LA=ESC/PAGE\n",1,20,prn_stream);
  223.     fwrite("\0350;0.24muE\0352;300;300drE",1,23,prn_stream);
  224.     fwrite("\0350;300;300drE\0351tsE\0351mmE",1,23,prn_stream);
  225.     fwrite("\0357isE\0355iaF\0355ipP\03514psE\0350poE",1,26,prn_stream);
  226.     fwrite("\03560;60loE\0350X\0350Y",1,15,prn_stream);
  227.     fwrite("\0350;0;2360;3388caE",1,17,prn_stream);
  228.     fwrite("\0351cmE\0350alfP",1,11,prn_stream);
  229.     fwrite("\0350affP\0350boP\0350abP",1,16,prn_stream);
  230.     fwrite("\0354ilG\0350bcI\0350sarG",1,16,prn_stream);
  231.     fwrite("\0351;0;100spE\0352owE",1,16,prn_stream);
  232.     
  233. /* Here the common part of the initialization string ends */
  234.  
  235.  
  236. /* Calculate the PRINTER_LEFT_MARGIN = device_left_margin - 60 adjusted to
  237. the byte boundary. Save this value for future comparison and set the
  238. starting X value of the printer line.
  239. */
  240.      left1  =  (int) (L_MARGIN * pdev->x_pixels_per_inch) - 60;
  241.      left1 = (left1 >> 3) << 3;
  242.     left0 = left1;
  243.  
  244.     fwrite("\035",1,1,prn_stream);
  245.         fprintf(prn_stream,"%d",left1);
  246.         fwrite("X",1,1,prn_stream);
  247.         
  248.     /* Set the compressed data format */
  249.         fwrite("\0353bcI",1,5,prn_stream);
  250.       
  251.           top = T_MARGIN * pdev->y_pixels_per_inch;
  252.         bottom = pdev->height - B_MARGIN * pdev->y_pixels_per_inch;
  253.         
  254.     left  = ( (int) (L_MARGIN * pdev->x_pixels_per_inch) ) >> 3 ;
  255.      width = ((pdev->width - (int)(R_MARGIN * pdev->x_pixels_per_inch)) >> 3) - left;
  256.  
  257.     /*
  258.     ** Print the page:
  259.     */
  260.  
  261.     for ( lnum = top; lnum < bottom ; )
  262.  
  263.  
  264.     {    
  265.         byte *in_data;
  266.         byte *inp;
  267.         byte *in_end;
  268.         byte *outp;
  269.         register byte *p, *q;
  270.         int lcnt;
  271.  
  272.         /*
  273.         ** Check buffer for 0 data.
  274.         */
  275.  
  276.         gdev_prn_get_bits(pdev, lnum, in, &in_data);
  277.         while ( in_data[0] == 0 &&
  278.                 !memcmp((char *)in_data, (char *)in_data + 1, line_size - 1) &&
  279.                 lnum < bottom )
  280.             {    
  281.             lnum++;
  282.             gdev_prn_get_bits(pdev, lnum, in, &in_data);
  283.         }
  284.  
  285.         if(lnum == bottom ) break;    
  286.         /* finished with this page */
  287.  
  288.  
  289.         lcnt = gdev_prn_copy_scan_lines(pdev, lnum, in, in_size);
  290.  
  291.         inp = in  + left;
  292.         in_end = inp + width;
  293.  
  294. /* Remove trailing 0s form the scan line data */
  295.  
  296.         while (in_end > inp &&  in_end[-1] == 0) 
  297.         {
  298.         in_end--;
  299.         }
  300.         
  301. /* Remove leading 0s form the scan line data */
  302.     
  303.     for(left2 = 0; inp < in_end && inp[0] == 0; inp++,left2++);
  304.  
  305. /* Recalculate starting X value */
  306.  
  307.     left2 = left1 + (left2 << 3);
  308.  
  309.  
  310.  
  311. /* Compress  non-zero data for this line*/
  312.  
  313.         outp = out;
  314.  
  315.  for( p = inp, q = inp + 1 ; q < in_end ; )
  316.      {
  317.     if( *p != *q++ ) 
  318.       { 
  319.       /* 
  320.       Copy non-repeated bytes 
  321.       to the output buffer  
  322.       */
  323.       *outp++ = *p++;
  324.       } 
  325.       else 
  326.         {
  327.         for (count = 2; ( *p == *q ) && (q < in_end); q++, count++);
  328.  
  329.         /* 
  330.         Copy repeated bytes and counts to the output buffer. 
  331.         As long as count is <= 255, additional step is necessary 
  332.         for a long repeated sequence
  333.         */
  334.             
  335.             while (count > 257)
  336.             {
  337.             *outp++ = *p;
  338.             *outp++ = *p;
  339.             *outp++ = 255;
  340.             p += 257;
  341.             count -=257;
  342.         }
  343.         *outp++ = *p;
  344.             *outp++ = *p;
  345.             *outp++ = count - 2;
  346.             p += count;
  347.         q = p+1;
  348.         }        
  349.     } 
  350.  
  351. /* The next line is necessary just in case of a single non-repeated byte at
  352. the end of the input buffer */
  353.  
  354. if (p == (in_end - 1)) *outp++ = *p;
  355.  
  356. /* End of the compression procedure */
  357.     
  358.  
  359. /* Set a new value of the starting X point, if necessary  */
  360.  
  361. if (left2 != left0)
  362.     {
  363.     left0 = left2;
  364.     fwrite("\035",1,1,prn_stream);
  365.         fprintf(prn_stream,"%d",left2);
  366.         fwrite("X",1,1,prn_stream);
  367.         }
  368.  
  369. /* Output the data string to the printer. 
  370. Y coordinate of the printer equals (lnum - 60)
  371. */            
  372.  
  373.         fwrite("\035",1,1,prn_stream);
  374.         fprintf(prn_stream,"%d",lnum-60);
  375.         fwrite("Y\035",1,2,prn_stream);
  376.         fprintf(prn_stream,"%d;",(outp - out));
  377.     fprintf(prn_stream,"%d;",(in_end - inp) << 3); 
  378.     fwrite("1;0bi{I",1,7,prn_stream);       
  379.         fwrite(out,1,(outp - out),prn_stream);                 
  380.         
  381.         lnum++;
  382.         
  383.         }
  384.  
  385. /* Send the termination string */
  386.  
  387.         fwrite("\0350bcI",1,5,prn_stream);                        
  388.     fwrite("\0351coO",1,5,prn_stream);
  389.         fwrite("\035rhE",1,4,prn_stream); 
  390.         
  391.         fwrite("\033\001@EJL \n",1,8,prn_stream);
  392.     fwrite("@EJL SE LA=ESC/PAGE\n",1,20,prn_stream);
  393.     fwrite("@EJL SET PU=1 PS=A4 ZO=OFF\n",1,27,prn_stream);
  394.     fwrite("@EJL EN LA=ESC/PAGE\n",1,20,prn_stream);
  395.     fwrite("\0350;0.24muE\0352;300;300drE",1,23,prn_stream);
  396.     fwrite("\0350;300;300drE\0351tsE\0351mmE",1,23,prn_stream);
  397.     fwrite("\0357isE\0355iaF\0355ipP\03514psE\0350poE",1,26,prn_stream);
  398.     fwrite("\03560;60loE\0350X\0350Y",1,15,prn_stream);
  399.     fwrite("\0350;0;2360;3388caE",1,17,prn_stream);
  400.     fwrite("\0351cmE\0350alfP",1,11,prn_stream);
  401.     fwrite("\0350affP\0350boP\0350abP",1,16,prn_stream);
  402.     fwrite("\0354ilG\0350bcI\0350sarG",1,16,prn_stream);
  403.     fwrite("\035rhE",1,4,prn_stream);
  404.     fwrite("\033\001@EJL \n",1,8,prn_stream);
  405.     fwrite("\033\001@EJL \n",1,8,prn_stream);
  406.     
  407.     fflush(prn_stream);
  408.     
  409.     gs_free((char *)buf2, in_size, 1, "lp8000_print_page(buf2)");
  410.     gs_free((char *)buf1, in_size, 1, "lp8000_print_page(buf1)");
  411.     return 0;
  412. }
  413.